home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / programy / FEBE (Firefox Environment Backup Extension) 5.0 / febe-5.0-fx.xpi / chrome / febe.jar / content / febeRestore.xul < prev    next >
Extensible Markup Language  |  2007-05-30  |  1KB  |  41 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3.  
  4. <!DOCTYPE overlay SYSTEM "chrome://febe/locale/febe.dtd">
  5. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  6.                 modal="yes"
  7.                 id="febeRestoreWindow"
  8.                 title="&febe.restore.caption;"
  9.                 orient="vertical"
  10.                 autostretch="always"
  11.                 buttons="cancel"
  12.                 onload="setFebeVersion(); sizeToContent()"
  13.                 oncancel="window.close();">
  14.  
  15.     <stringbundleset id="stringbundleset">
  16.         <stringbundle id="febe-strings" src="chrome://febe/locale/febe.properties"/>
  17.     </stringbundleset>
  18.  
  19.     <script type="application/x-javascript" src="chrome://febe/content/febeCommon.js"/>
  20.     <script type="text/javascript">
  21.     <![CDATA[
  22.          window.offscreenBuffering = false;
  23.     ]]>
  24.     </script>
  25.     <groupbox align="center" orient="horizontal">
  26.         <vbox>
  27.             <text value="&febe.progress.title;" style="font-weight: bold; font-size: x-large;"/>
  28.             <label id="febeVersionID" value=""/>
  29.             <separator class="thick"/>
  30.             <label id="febeProgressText" align="left" value="    &febe.restore.caption;"/>
  31.             <progressmeter id="febeProgressmeterID" mode="undetermined" value="0" style="margin: 4px;"/>
  32.             <text value="&febe.restore.msg;"/>
  33.         </vbox>
  34.         <spring flex="1"/>
  35.         <image src="chrome://febe/skin/febe100x100.png"/>
  36.     </groupbox>
  37.     <hbox>
  38.         <spacer flex="1"/>
  39.     </hbox>
  40. </dialog>
  41.